@import url('../../../../css.css');
@font-face {
  font-family: 'BurbankBigCondensed-Black';
  src: url('../font/BurbankBigCondensed-Black.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000000 !important;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #000000 !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #000000 !important;
}

body{
	margin: 0;
	padding: 0;
    font-size: 14px;
	color: #333;
}
p{
	font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: .9em;
    line-height: 1.75;
}
ol, ul {
    list-style: none;
	padding: 0;
	margin: 0;
}
/*
section{
	min-height: 750px;
}*/
header{
	background: #2A2A2A;
}
header img{
	max-width: 100px;
	padding: 10px 0;
}
header .menu{
	height: 100%;
    display: flex;
    align-items: center;
}
header .menu a{
    color: #ccc;
    font-family: OpenSans,sans-serif;
    text-transform: uppercase;
    letter-spacing: .075em;
    padding: 1em 1em;
    text-decoration: none;
    font-size: 11px;
    height: 100%;
    display: flex;
    align-items: center;
	position: relative;
}
header .menu a:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #FFFF00;
	height: 0;
	-webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
header .menu a.active,
header .menu a:hover{
    color: #fff;
}
header .menu a.active:after,
header .menu a:hover:after{
	height: 5px;
}
h1.blue-title{
	color: #1db8f3;
    font-size: 4em;
	font-family: BurbankBigCondensed-Black,sans-serif;
    text-transform: uppercase;
}
h2 {
    font-size: 1.875em;
}
h4 {
    font-size: 1.125em;
}
.text-success{
	color: #FFFF00!important;
}
.text-danger{
	color: #FE23A9!important;
}
.modal-header{
	padding: 0;
	position: relative;
	border: 0;
	display: flex;
    flex-direction: column;
}
.modal-header .close {
	padding: 0;
    margin: -4rem 0 -1rem auto;
    position: absolute;
    right: 0;
}
.modal-backdrop {
    background-color: rgba(29,184,243,.95);
	opacity: 1;
}
.modal-content{
	background: transparent;
	border: 0;
}
.close {
    float: right;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
}
.modal-header .select-title{
	font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 2em;
    text-transform: uppercase;
    width: 100%;
    color: #fff;
}
.modal-header .breadcrumb{
	margin: 0 0 20px 0;
    padding: 0;
    border: 1px solid #fff;
	border-radius: 0;
	background-color: transparent;
    border-right: 0!important;
}
.modal-header .breadcrumb > li {
    padding: 8px 18px 7.5px 30px;
    position: relative;
    white-space: nowrap;
    font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 1.1em;
    text-transform: uppercase;
	position: relative;
}
.modal-header .breadcrumb > li:first-child{
    padding: 7.5px 18px 7.5px 20px;
}
.modal-header .breadcrumb > li:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: -14px;
    width: 28px;
    height: 28px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: none;
	z-index: -1;
}
.modal-header .breadcrumb > li.active{
	background: yellow;
}
.modal-header .breadcrumb > li.active:after	{
	background: yellow;
}
.modal-header .breadcrumb > li.error{
	background: red;
}
.modal-header .breadcrumb > li.error:after	{
	background: red;
}
.modal-header .breadcrumb > li span{
    position: absolute;
    top: -30px;
    left: 0;
    display: block;
    width: 100%;
    text-align: center;
}
.modal-backdrop.show {
    opacity: 1;
}
.platform-wrapp button[type="button"]{
	width: 150px;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 1.7em;
    margin-bottom: 15px;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    cursor: pointer;
	-webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.platform-wrapp button[type="button"].active,
.platform-wrapp button[type="button"]:hover {
    color: #000;
    -webkit-clip-path: polygon(0 5%,100% 0,100% 100%,0 95%);
    clip-path: polygon(0 5%,100% 0,100% 100%,0 95%);
    background: #ff0;
    border-color: #ff0;
}
.form-control{
	height: auto;
    border: 1px solid #fff;
    border-radius: 0;
    background: transparent;
    padding: 15px 10px;
    font-family: BurbankBigCondensed-Black,sans-serif;
	font-size: 1.5rem;
	color: #000;
}
.close:not(:disabled):not(.disabled):focus, 
.close:not(:disabled):not(.disabled):hover {
    color: #FFFF00;
    opacity: 1;
}
@-webkit-keyframes jelly{
	0%{
		-webkit-transform:matrix(1,0,0,1,0,0);
		transform:matrix(1,0,0,1,0,0)
	}
	50%{
		-webkit-transform:matrix3d(1.0593,0,-.1,.00025,0,.9603,.1,-.0001,.1,-.1,.9801,0,0,-3,0,1);
		transform:matrix3d(1.0593,0,-.1,.00025,0,.9603,.1,-.0001,.1,-.1,.9801,0,0,-3,0,1)
	}
	to{
		-webkit-transform:matrix(1,0,0,1,0,0);
		transform:matrix(1,0,0,1,0,0)
	}
}
@keyframes jelly{
	0%{
		-webkit-transform:matrix(1,0,0,1,0,0);
		transform:matrix(1,0,0,1,0,0)
	}
	50%{
		-webkit-transform:matrix3d(1.0593,0,-.1,.00025,0,.9603,.1,-.0001,.1,-.1,.9801,0,0,-3,0,1);
		transform:matrix3d(1.0593,0,-.1,.00025,0,.9603,.1,-.0001,.1,-.1,.9801,0,0,-3,0,1)
	}
	to{
		-webkit-transform:matrix(1,0,0,1,0,0);transform:matrix(1,0,0,1,0,0)
	}
}
@-webkit-keyframes float{
    0%{
        -webkit-transform:translate(0);
        transform:translate(0)
    }
    65%{
        -webkit-transform:translateY(2em);
        transform:translateY(2em)
    }
    to{
        -webkit-transform:translate(0);
        transform:translate(0)
    }
}
@keyframes float{
    0%{
        -webkit-transform:translate(0);
        transform:translate(0)
    }
    65%{
        -webkit-transform:translateY(2em);
        transform:translateY(2em)
    }
    to{
        -webkit-transform:translate(0);
        transform:translate(0)
    }
}
@-webkit-keyframes arrowFloat{
    0%{
        -webkit-transform:translate(0);
        transform:translate(0)
    }
    50%{
        -webkit-transform:translateY(1em);
        transform:translateY(1em)
    }
    to{
        -webkit-transform:translate(0);
        transform:translate(0)
    }
}
@keyframes arrowFloat{
    0%{
        -webkit-transform:translate(0);
        transform:translate(0)
    }
    50%{
        -webkit-transform:translateY(1em);
        transform:translateY(1em)
    }
    to{
        -webkit-transform:translate(0);
        transform:translate(0)
    }
}

.btn {
    position: relative;
    border: 0;
    border-radius: 0;
    line-height: 2;
    z-index: 1;
    font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 1em;
    text-transform: uppercase;
    padding: .25em 2em;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    letter-spacing: 0;
}
.btn>span {
    pointer-events: none;
}
.btn.btn-primary {
    font-size: 1.75em;
    color: #000;
    background-color: transparent;
    border: none;
    padding: 0 2em;
    text-decoration: none;
    -webkit-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
	color: #000;
	font-size: 2.5em;
}
.btn.btn-display:after {
    background-color: #ff0;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2em;
    -webkit-transition: background-color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
    -webkit-box-shadow: 0 4px 12px -4px rgba(0,0,0,.5);
    box-shadow: 0 4px 12px -4px rgba(0,0,0,.5);
    -webkit-animation: jelly 6s ease-in-out infinite;
    animation: jelly 6s ease-in-out infinite;
    -webkit-transform-origin: 50% 50% 20px;
    -ms-transform-origin: 50% 50% 20px;
    transform-origin: 50% 50% 20px;
}
.btn.btn-display span {
    position: relative;
    z-index: 1;
}
.card-bg-blue{
	background: radial-gradient(#49acf2,#143977);
    border: 2px solid #37d1ff;
}
.card-bg-brown{
	background: radial-gradient(#d37841,#78371d);
    border: 2px solid #e98d4b;
}
.card-bg-green{
	background: radial-gradient(#60aa3a,#175117);
    border: 2px solid #87e339;
}
.card-bg-purple{
	background: radial-gradient(#b15be2,#4b2483);
    border: 2px solid #e95eff;
}
#home{
	background-image: url(../images/bg.jpeg);
	background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
	overflow: hidden;
    min-height: 80vh;
    width: 100%;
    position: relative;
    z-index: 0;
}
#home .activities {
    position: absolute;
    top: 4em;
    left: 3em;
}
#home .activities .single{
    padding: 1em;
}
#home .activities .single .text,
#home .activities .single .icon,
#home .activities .single{
    position: relative;
}
#home .activities .single .text{
	overflow: hidden;
}
#home .activities .single:after{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff0;
    -webkit-clip-path: polygon(0 2%,100% 0,100% 18%,92% 24%,100% 24%,100% 100%,0 98%);
    clip-path: polygon(0 2%,100% 0,100% 18%,92% 24%,100% 24%,100% 100%,0 98%);
    -webkit-transition: background-color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
	z-index: 0;
}
#home .activities .single .icon {
    width: 7em;
    height: 7em;
    margin: -3em auto 0;
    background: url(../images/pro.png) no-repeat 50%;
    background-size: contain;
}
#home .activities .single .text,
#home .activities .single .icon{
	z-index: 2;
}
#home .activities .single .text h4,
#home .activities .single .text h2 {
	font-family: BurbankBigCondensed-Black,sans-serif;
    text-transform: uppercase;
	text-align: center;
}
#home .activities .single .text h2 {
    max-width: 5em;
    margin: 0 auto;
}
#home .activities .single .text h4 {
    margin: .2em 0;
}
#prices{
	margin-bottom: 50px;
}
#prices .price{
	display: flex;
    justify-content: center;
    align-items: center;
    font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 3.5em;
    text-transform: uppercase;
	height: 130px;
    cursor: pointer;
}
#prices .price img{
	max-width: 100px;
	margin-right: 15px;
}
#prices .price.yellow{
	background-image: -webkit-linear-gradient(top,#f5d337,#fff889);
    background-image: -o-linear-gradient(top,#f5d337 0,#fff889 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f5d337),to(#fff889));
    background-image: linear-gradient(180deg,#f5d337 0,#fff889);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(255, 245, 211, 0.21569)",endColorstr="rgba(255, 255, 248, 0.53725)",GradientType=0);
}
#prices .price.dark-blue{
	background: #9FA3C2;
	color: #5F6495;
}
#prices .price.grey{
	background: #C9CAD8;
	color: #8E90AD;
}
#prices .price.sea{
	background: #1AC2FE;
	color: #0183B1;
}
#prices .buttons-wrapp{
	position: relative;
    margin-top: -82px;
}
.more{
	position: absolute;
	top: -200px;
	width: 100%;-200px
	max-width: 19em;
	padding: 2em;
	z-index: 1;
	-webkit-animation:float 2.2s infinite ease-in-out;
    animation:float 2.2s infinite ease-in-out;
}
.more img{
    position: absolute;
    top: 93%;
    left: 50%;
    right: 0;
    font-size: 3.5em;
    margin-left: -26px;
}
.more:after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#fe23a9;
	-webkit-clip-path:polygon(0 10%,100% 0,100% 100%,0 90%);
	clip-path:polygon(0 10%,100% 0,100% 100%,0 90%);
}
.more h3{
	position: relative;
    z-index: 1;
    font-size: 1.7em;
    margin: 0;
    text-align: center;
    font-family: BurbankBigCondensed-Black,sans-serif;
    color: #fff;
    text-transform: uppercase;
}
.arrow-wrap{
    display: none;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    position: absolute;
    left: 5%;
}
.arrow-wrap .arrow{
    display: flex;
    align-items: center;
    font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 1.0em;
    text-transform: uppercase;
    margin-top: -15px;
    position: relative;
}

.arrow-wrap .arrow span{
    display: flex;
    width: 55px;
    height: 55px;
    justify-content: center;
    align-items: center;
    background: #000;
    margin-left: 10px;
    border-radius: 50%;
}
.arrow-wrap .arrow span img{
    width: 25px;
    -webkit-animation: arrowFloat 1.2s infinite ease-in-out;
    animation: arrowFloat 1.2s infinite ease-in-out;
    position: relative;
    top: -7px;
}
#activities p{
	max-width: 44em;
    margin: 0 auto;
    font-weight: 600;
    font-size: 1em;
}
#featured .single,
#dayly_activities .single,
#activities .activities .single{
	margin-bottom: 15px;
	max-height: 255px;
	overflow: hidden;
}
#featured .single img,
#dayly_activities .single img,
#activities .activities .single img{
	max-width: 100%;
}
#featured .single .text,
#dayly_activities .single .text,
#activities .activities .single .text{
	position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-family: BurbankBigCondensed-Black,sans-serif;
    text-transform: uppercase;
    background: rgba(0,0,0,.3);
    color: #fff;
    padding: 5px;
}
#featured .single h2,
#dayly_activities .single h2,
#activities .activities .single h2{
	text-shadow: 0 0 10px rgba(0,0,0,.5);
    text-transform: uppercase;
    transform: scale(1,1.3);
    -webkit-transform: scale(1,1.3);
    -moz-transform: scale(1,1.3);
    -ms-transform: scale(1,1.3);
    -o-transform: scale(1,1.3);
}
#featured .single h4,
#dayly_activities .single h4,
#activities .activities .single h4{
	font-size: 20px;
	margin-bottom: 0;
}
#news{
	background: #F1F4F6;
}
#news .container-image{
	position: relative;
	overflow: hidden;
}

#news .container-image .feature-image.large-img:before {
    background-color: rgba(29,184,243,.9);
    background-image: url(../images/bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: scale3d(2,2,2);
    transform: scale3d(2,2,2);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    background: -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.65)));
    background: -webkit-linear-gradient(top,transparent,rgba(0,0,0,.65));
    background: -o-linear-gradient(top,transparent 0,rgba(0,0,0,.65) 100%);
    background: linear-gradient(180deg,transparent 0,rgba(0,0,0,.65));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(0, 0, 0, 0)",endColorstr="rgba(166, 0, 0, 0)",GradientType=0);
}
#news .container-image:hover .feature-image.large-img:before {
    opacity: 1;
	-webkit-transform: scaleX(1);
    transform: scaleX(1);
}
#news .container-image .feature-image{
    background-size: cover;
    background-position-x: center;
}
#news .container-image .feature-image.large-img{
    height: 480px;
}
#news .container-image .feature-image.big-img{
	height: 380px;
}
#news .container-image .feature-image.small-img{
	height: 220px;
}
#news .single-small .container-image .text-wrapp{
	height: 150px;
    background: #fff;
    padding: 10px;
    color: #000;
	position: relative;
}
#news .single-small .container-image .text-wrapp:after{
	content:'';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 0;
	width: 100%;
	background: #1db8f3;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
#news .single-small .container-image:hover .text-wrapp:after{
	height: 10px;
}
#news .single-small .container-image .text-wrapp .date{
    font-size: 1.2em;
    color: #1db8f3;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
	margin-top: 10px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
#news .single-small .container-image:hover .text-wrapp .date{
	margin-top: 0;
}

#news .single-small .container-image .text-wrapp .title{
    font-size: 1.8em;
    font-family: BurbankBigCondensed-Black,sans-serif;
    text-transform: uppercase;
}

#news .large .text-wrapp{
    font-family: BurbankBigCondensed-Black,sans-serif;
	position: absolute;
	bottom: 50px;
	left: 50px;
	color: #fff;
	z-index: 2;
}
#news .large .text-wrapp .date{
	font-size: 24px;
}
#news .large .text-wrapp .title{
	font-size: 70px;
    text-transform: uppercase;
	line-height: 70px;
}


#news .middle .text-wrapp{
    font-family: BurbankBigCondensed-Black,sans-serif;
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: #fff;
	z-index: 2;
}
#news .middle .text-wrapp .date{
	font-size: 16px;
}
#news .middle .text-wrapp .title{
	font-size: 46px;
    text-transform: uppercase;
	line-height: 46px;
}

.stat-wrapp{
	display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-wrapp .atatistic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}
.stat-wrapp .atatistic .single{
	display: flex;
    flex-direction: column;
    align-items: center;
    font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 2em;
    text-transform: uppercase;
    width: 100%;
    color: #fff;
}

.stat-wrapp .user-info{
	display: flex;
    justify-content: space-around;
    width: 80%;
}
.stat-wrapp .user-info .coins-wrapp,
.stat-wrapp .user-info .platform-wrapp{
	background-color: #fe23a9;
    -webkit-clip-path: polygon(0 10%,100% 0,100% 100%,0 90%);
    clip-path: polygon(0 10%,100% 0,100% 100%,0 90%);
    font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 2em;
    text-transform: uppercase;
    color: #fff;
    height: 70px;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.stat-wrapp .user-info .coins-wrapp img,
.stat-wrapp .user-info .platform-wrapp i{
    margin-right: 5px;
}
.stat-wrapp .user-info .platform-wrapp i{
	color: #000;
}
#platformModal .modal-content .modal-content .loader{
	color: #FE23A9;
	font-size: 28px;
}
#platformModal .modal-content .modal-content .loader-text-status{
	font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 1.6em;
    color: #000;
    margin-top: 10px;
}
#platformModal .modal-content .modal-content .text-error{
	font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.4em;
    line-height: 1.75;
    color: #000;
}
#platformModal .input-wrapp img{
    height: 68px;
}

.ludy-options a.button{
	color: #eee;
}
.modal-content .counting-image img{
	max-width: 150px;
}
.modal-content .counting-image .coins{
	font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 3em;
    text-transform: uppercase;
    color: #fff;
}
#verificationErrormModal .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    color: #131F3C;
    background: linear-gradient(to right, #ECF1F8, #CCD9EA);
	height: 100%;
	width: 100%;
}
#verificationErrormModal .description h4{
	padding: 7px 20px;
    background: linear-gradient(to right, #F4E44B, #F4C24C);
    color: #131F3C;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
	margin: 0;
}
#verificationErrormModal .description .content{
    font-family: 'Open Sans', sans-serif;
	background: #131F3C;
    font-size: 14px;
	color: #eee;
	padding: 0 10px;
	padding-top: 5px;
}
#verificationErrormModal .description .content p{
    font-weight: 900;
    font-size: 1.1em;
	margin-bottom: 5px;
}
#verificationErrormModal .description .content .name{
	color: #FE23A9;
    font-weight: 700;
    font-family: BurbankBigCondensed-Black,sans-serif;
    font-size: 1.5em;
    line-height: 1.1em;
}

#featured,
#dayly_activities{
	display: none;
	background-image: url(../../../../FortniteBattle-passseason6header-bg-1920x1080-a9c4fbc4d94a09059d16b1f2338160eb895c5d3a.jpeg);
	background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
	overflow: hidden;
	padding: 25px 0;
	min-height: 720px;
}
footer{
	background: #2A2A2A;
	padding: 15px 0;
}
footer a{
	color: #e7e7e7;
	font-size: .75em;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
	text-decoration: none;
}
footer a:hover{
	color: #ff0!important;
	text-decoration: none;
}
footer .links span{
	margin: 0 10px;
	color: #e7e7e7;
}
footer .scrollToHeader{
	font-size: 24px;
    width: 35px;
    height: 35px;
    text-align: center;
    border: 2px solid #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
	#prices .price.yellow{
		height: 130px;
	}
}

@media (max-width: 576px) {
	.modal-header .breadcrumb{
		border: 0;
	}
	#platformModal .modal-dialog{
		padding-top: 50px;
	}
	.modal-header .breadcrumb > li:first-child {
		padding: 7.5px 0px 7.5px 15px;
	}
	.modal-header .breadcrumb > li {
		padding: 8px 18px 8px 25px;
		font-size: 1.1em;
		width: 47%;
		border: 1px solid #fff;
	    border-right: 0;
		border-left: 0;
	}
	.modal-header .breadcrumb > li:after {
	    top: 5px;
		width: 29px;
		height: 29px;
		right: -15px;
	}
	.btn.btn-primary {
		font-size: 1.75em;
		color: #000;
		background-color: transparent;
		border: none;
		padding: 0 1em;
		text-decoration: none;
		-webkit-transition: background-color .3s ease;
		-o-transition: background-color .3s ease;
		transition: background-color .3s ease;
		color: #000;
		font-size: 2.0em;
	}
	.modal-header .breadcrumb > li:nth-child(3n) {
		border-left: 1px solid #fff;
	}
	#prices .price{
		font-size: 2.3em;
	}
	#prices .price img {
		max-width: 85px;
	}
	.arrow-wrap .arrow span {
		width: 35px;
		height: 35px;
	}
	.arrow-wrap .arrow span img {
		width: 15px;
	}
}
@media (min-width: 576px){
	.modal-dialog {
		max-width: 600px;
		margin-top: 80px;
	}
}

#video-section .video-wrapp{
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 100%;
    padding-top: 56.25%;
    height: 0px;
    position: relative;
}
#video-section .container iframe{
    position: absolute;
    top: 0px;
    left: 0;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
}